紀錄文
在安裝時通常會遇到
ERROR: Failed building wheel for pymssql
Failed to build pymssql
ERROR: Could not build wheels for pymssql, which is required to install pyproject.toml-based projects
的問題
在參考了Mac电脑 python3.9 连接SQL Server报错
卻仍有錯誤
參考Cython 0.29.30 failing build with pymssql
後發現我的狀況是Cython的版本問題 所以指定pip使用的Cython版本就可以了
echo "Cython==0.29.27" >> constraints.txt
export PIP_CONSTRAINT='<your/constrain/file/path>'
pip3 install pymssql==2.1.5